home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2003 March / DPPCPRO0303.ISO / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / netobjects / nfx / wizard / WizardEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-20  |  631 b   |  17 lines

  1. package asp.netobjects.nfx.wizard;
  2.  
  3. public class WizardEvent {
  4.    public static final int TYPE_PAGE_COMPLETE = 1;
  5.    public static final int TYPE_PAGE_MODIFIED = 2;
  6.    public static final int TYPE_SELECTION_CHANGED = 3;
  7.    private int dmType;
  8.  
  9.    public WizardEvent(int type) {
  10.       this.dmType = type;
  11.    }
  12.  
  13.    public final int getType() {
  14.       return this.dmType;
  15.    }
  16. }
  17.